home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / fddev202.arc / PASCAL.ARC / MAILHIST.INC < prev    next >
Text File  |  1991-10-01  |  2KB  |  47 lines

  1. (*
  2. **  MailHist.Inc (FrontDoor)
  3. **
  4. **  Copyright 1991 Joaquim H. Homrighausen. All rights reserved.
  5. **
  6. **  INBOUND/OUTBOUND.HIS format for FrontDoor 2.00+
  7. **
  8. **  Last revision:  91-10-02
  9. **
  10. **  -------------------------------------------------------------------------
  11. **  This information is not necessarily final and is subject to change at any
  12. **  given time without further notice
  13. **  -------------------------------------------------------------------------
  14. *)
  15.  
  16. (*
  17. **  The first record in the .HIS files is not a valid history entry. It
  18. **  contains the date/time when the .HIS file was last packed or when
  19. **  it was created if it has never been packed. So if you're reading the
  20. **  .HIS files for any reason, skip the first record and you'll be at the
  21. **  first valid record.
  22. **
  23. **  Note that the COST field will contain zero for inbound mail sessions as
  24. **  well as any failed session negotiated using the script language.
  25. *)
  26. TYPE
  27.   MailHistRec = RECORD
  28.     Year,                                                    (* 1990 - xxxx *)
  29.     Month,                                                        (* 1 - 12 *)
  30.     Day,                                                          (* 1 - 31 *)
  31.     Hour,                                                         (* 0 - 23 *)
  32.     Minute,                                                       (* 0 - 59 *)
  33.     Second,                                                       (* 0 - 59 *)
  34.     Zone,
  35.     Net,
  36.     Node,
  37.     Point     : word;
  38.     SystemName: string[30];
  39.     Location  : string[38];
  40.     TimeOnLine: word;                              (* Seconds spent on-line *)
  41.     RcvdBytes,
  42.     SentBytes : longint;
  43.     Cost      : word;
  44.   End;
  45.  
  46. (* end of file "MailHist.Inc" *)
  47.